home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEGetObjById.au3 < prev    next >
Text File  |  2007-09-08  |  445b  |  10 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser to the basic example, get an object reference
  3. ;                to the DIV element with the ID "line1". Display the innerText
  4. ;                of this element to the console.
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IE_Example ("basic")
  9. $oDiv = _IEGetObjById ($oIE, "line1")
  10. ConsoleWrite(_IEPropertyGet($oDiv, "innertext") & @CR)